home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_500 / wiconify / wiconsetter.lzh / wIconSetter / wIconSetter.Init < prev   
Text File  |  1991-04-19  |  3KB  |  66 lines

  1. ;
  2. ;  Sample.Init
  3. ;
  4. ;  A sample initialization file for wIconSetter.
  5. ;
  6.  
  7. ;
  8. ;  First, DEFINE any icons that will be used more than once.
  9. ;  (Use the commands ICON, IMAGE, SELECT, MASK, NAME, POSITION, FLAGS
  10. ;  described below).
  11. ;
  12.  
  13. Define:  'CLI-Icon'         ICON:  FROM Icons:CLI.Icon
  14.  
  15. ;
  16. ;  Next specify the PROGRAMs and thier SCREENs and WINDOWs that you intend
  17. ;  to add icons to.  (If you do not include a SCREEN or WINDOW command, the
  18. ;  name defaults to '[ANY]', which matches any title).
  19. ;
  20. ;  Once you have specified a window, use any of the following commands
  21. ;  to specify the icon:
  22. ;
  23. ;    ICON: name         To use an icon defined above with DEFINE
  24. ;    ICON: FROM file    To read an icon description from a file
  25. ;    IMAGE:             To specify the icon's image (the lines following
  26. ;                       the IMAGE command are the image data - see the
  27. ;                       wIconSetter documentation for a description of
  28. ;                       the data format
  29. ;    SELECT:            To specify the icon's select image
  30. ;    MASK:              To specify the icon's image mask
  31. ;    NAME: 'name'       To specify the icon's name (default is window name)
  32. ;    POSITION: (x,y)    To give the icon's starting position (in pixels)
  33. ;    FLAGS: flag | flag...    where the flags are:
  34. ;        NOSAVEPOS       icon will not remember its old position when opened
  35. ;        NOCLOSE         the CLOSE menu item will not be available for this icon
  36. ;        NOMOVE          icon can not be dragged from its initial position
  37. ;        NOORGANIZE      icon will not be affected by ORGANIZE or CLEANUP menus
  38. ;        LOCKED          icon will never be moved frlom its current position
  39. ;        NOMULTISELECT   multiple icons can not be selected along with this one
  40. ;        CHANGEREFRESH   a SMART_REFRESH window will be converted to
  41. ;                        SIMPLE_REFRESH window automatically when iconified
  42. ;                        (saves space, but may loose data within the window)
  43. ;        NOICONIFY       window will not be able to be iconified
  44. ;        AUTOICONIFY     window will be iconified as soon as it opens
  45. ;
  46.  
  47.  
  48. Program:  'NewCon'
  49.      Window: 'AmigaShell'
  50.      Window: 'AmigaDOS'
  51.        Icon:   'CLI-Icon'
  52.      Window: '[ANY]'
  53.        Icon:   FROM Icons:Text.Icon
  54.  
  55.  
  56. Program:  Workbench
  57.    Window: 'Workbench'
  58.      Icon:    FROM Icons:Workbench.Icon
  59.    Window: [ANY]
  60.      Icon:    FROM Icons:WB-Window.Icon
  61.  
  62. Program:  [ANY]
  63.    Window: 'AmigaShell'
  64.    Window: 'AmigaDos'
  65.      Icon:    'CLI-Icon'
  66.